home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / fuse-utils.postrm < prev    next >
Encoding:
Text File  |  2010-09-18  |  370 b   |  26 lines

  1. #!/bin/bash -e
  2.  
  3. test $DEBIAN_SCRIPT_DEBUG && set -v -x
  4.  
  5. case $1 in
  6.   purge|remove)
  7.   ;;
  8.  
  9.   failed-upgrade|upgrade|abort-upgrade)
  10.   ;;
  11.  
  12.   *)
  13.     echo "postrm called with unknown argument \`$1'" >&2
  14.     exit 1
  15.   ;;
  16. esac
  17.  
  18. # Automatically added by dh_installinit
  19. if [ "$1" = "purge" ] ; then
  20.     update-rc.d fuse remove >/dev/null
  21. fi
  22. # End automatically added section
  23.  
  24.  
  25. exit 0
  26.